home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / tex / macros / source / contrib / supported / xypic / src / xyd.mf < prev    next >
Text File  |  1995-03-15  |  2KB  |  56 lines

  1. % $Id: xyd.mf,v 2.7 1992/12/14 01:41:26 kris Exp $
  2. %
  3. % XYD: generate characters of `XY-pic Directional' font.
  4. % Copyright (c) 1992  Kristoffer H. Rose  <kris@diku.dk>
  5. %
  6. % This file is part of the XY-pic macro package.
  7. %
  8. % The XY-pic macro package is free software; you can redistribute it and/or
  9. % modify it under the terms of the GNU General Public License as published by
  10. % the Free Software Foundation; either version 2 of the License, or (at your
  11. % option) any later version.
  12. %
  13. % The XY-pic macro package is distributed in the hope that it will be
  14. % useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
  16. % Public License for more details.
  17. %
  18. % You should have received a copy of the GNU General Public License along
  19. % with this macro package; if not, write to the Free Software Foundation,
  20. % Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. % _________________________________________________________________________
  22. %
  23. % CONTENTS: Generate `directional' characters from 0..127 by calling
  24. % `chartowards(Code, Dx, Dy)' with
  25. %
  26. % Code:         0     15    31    47    63    79    95   111   127
  27. % Dx,Dy:  -15/16,-1  0,-1  1,-1  1,0   1,1   0,1  -1,1  -1,0  -1,-1
  28. %                                        /    |    \
  29. % Direction:    o     o     o     o-    o     o     o    -o     o
  30. %              /      |      \                                 /
  31. %
  32. % where the intervening codes are got by interpolating either Dx or Dy as
  33. % appropriate.
  34. % _________________________________________________________________________
  35. %
  36. % Parameters:
  37. %
  38. font_coding_scheme:="XY-pic directional";
  39. %
  40. font_x_height    segx#;
  41. font_quad    segl#;
  42. fontdimen 8:    segw#;            % default_rule_thickness
  43. %
  44. % Characters:
  45. %
  46. for cc =  0 step 1 until  31: chartowards(cc,(cc-15)/16,       -1); endfor;
  47. for cc = 32 step 1 until  63: chartowards(cc,         1, (cc-47)/16); endfor;
  48. for cc = 64 step 1 until  95: chartowards(cc,(79-cc)/16,        1); endfor;
  49. for cc = 96 step 1 until 127: chartowards(cc,        -1,(111-cc)/16); endfor;
  50. %
  51. % $Log: xyd.mf,v $
  52. % Revision 2.7  1992/12/14  01:41:26  kris
  53. % Generate all XY-pic `directional' characters.
  54. %
  55. % Extracted from xyatip10.mf [Revision 2.1 1992/01/02 14:54:07 kris]
  56.